home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-03-25 | 1.8 KB | 56 lines | [TEXT/MPS ] |
- #•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
- # VirtualSphereSample.make
- #
- # Makefile for the "VirtualSphereSample" application.
- #
- # Author: Michael Chen, Human Interface Group / ATG
- # Copyright © 1991-1993 Apple Computer, Inc. All rights reserved.
- #
- # Part of Virtual Sphere Sample Code Release v1.1
- #•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••*/
-
-
- ProgramName = VirtualSphereSample
- #SymOptions = -sym on
- LOptions = {SymOptions}
-
-
- # Use SANE for floating point calculations
- COptions = {SymOptions} -r
- RealMathLibs = {CLibraries}CSANElib.o
-
- # Comment the above 2 lines and uncomment the following 2 lines for
- # hardware floating math and '020 instruction set
- #COptions = {SymOptions} -r -mc68881 -mc68020 -elems881
- #RealMathLibs = {CLibraries}CSANElib881.o
-
-
- CObjs = ∂
- Sample.c.o ∂
- Globals.c.o ∂
- SampleAdditional.c.o ∂
- Graphics3D.c.o ∂
- Offscreen.c.o ∂
- VirtualSphere.c.o
-
- LinkObjs = ∂
- {RealMathLibs} ∂
- "{Libraries}"Runtime.o ∂
- "{Libraries}"Interface.o ∂
-
- {ProgramName} ƒƒ {CObjs}
- Link -o {ProgramName} {LOptions} {CObjs} {LinkObjs}
- SetFile {ProgramName} -t APPL -c 'MOOS' -a B
-
- {ProgramName} ƒƒ Sample.r Sample.h
- Rez -o {ProgramName} Sample.r -append
-
- Globals.c.o ƒƒ MakeFile Globals.h Sample.h MakeFile
- Graphics3D.c.o ƒƒ MakeFile Globals.h Graphics3D.h MyMath.h Sample.h
- MyMath.c.o ƒƒ MakeFile Globals.h MyMath.h
- Offscreen.c.o ƒƒ MakeFile Globals.h Offscreen.h
- Sample.c.o ƒƒ MakeFile Globals.h Sample.h SampleAdditional.h
- SampleAdditional.c.o ƒƒ MakeFile Globals.h SampleAdditional.h Offscreen.h MyMath.h ∂
- Graphics3D.h Sample.h ObjectData.h VirtualSphere.h
- VirtualSphere.c.o ƒƒ MakeFile Globals.h Graphics3D.h MyMath.h VirtualSphere.h
-